home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software of the Month Club 1998 June
/
Software of the Month Club 1998 June.iso
/
pc
/
dos
/
games
/
dom1
/
liner.rpp
< prev
next >
Wrap
Text File
|
1998-04-15
|
576b
|
57 lines
{ this is a super simple screen saver}
var x:number;
var y:number;
var index:number;
var dx:number;
var dy:number;
var color:number;
randomize;
setcolor(15);
color:=1;
x:=rand(1,319);
y:=rand(1,199);
dx:=1;
dy:=1;
loop (index=0 to 1000)
x:=x+dx;
y:=y+dy;
if (x>=319)
dx:=-1*dx;
color:=color+1;
endif;
if (x<=0)
dx:=-1*dx;
color:=color+1;
endif;
if (y>=199)
dy:=-1*dy;
color:=color+1;
endif;
if (y<=0)
dy:=-1*dy;
color:=color+1;
endif;
if (color>=255)
color:=0;
endif;
setcolor(color);
plot(x,y);
endl;